home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / Apple Shared Library Manager / ASLM Examples / TestTools / Sources / TestExceptions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  919 b   |  36 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        TestExceptions.h
  3.  
  4.     Contains:    Declaration for the TTestExceptions class
  5.  
  6.     Copyright:    © 1992-1994 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __TESTEXCEPTIONS__
  11. #define __TESTEXCEPTIONS__
  12.  
  13. #ifndef __TESTTOOL__
  14. #include <TestTool.h>
  15. #endif
  16.  
  17. /*******************************************************************************
  18. ** CLASS TTestExceptions
  19. ********************************************************************************/
  20.  
  21. #define kTTestExceptionsID    kTestToolPrefix "TTestExceptions,1.2"
  22.  
  23. class TTestExceptions : public TTestTool
  24. {
  25.     public:
  26.                             _CDECL TTestExceptions();
  27.         virtual                ~_CDECL TTestExceptions();
  28.         
  29.         virtual void        _CDECL InitTest(BooleanParm verbose, BooleanParm debug,
  30.                                      int argc, char** argv);        
  31.         virtual void        _CDECL RunTestIteration(BooleanParm verbose, BooleanParm debug);
  32.         virtual void        _CDECL EndTest(BooleanParm verbose, BooleanParm debug);
  33. };
  34.  
  35. #endif
  36.